home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / components / calICSCalendarModule.js < prev    next >
Text File  |  2007-11-20  |  5KB  |  135 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla calendar code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  *   Michiel van Leeuwen <mvl@exedo.nl>
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Vladimir Vukicevic <vladimir.vukicevic@oracle.com>
  23.  *   Dan Mosedale <dan.mosedale@oracle.com>
  24.  *   Joey Minta <jminta@gmail.com>
  25.  *   Philipp Kewisch <mozilla@kewis.ch>
  26.  *
  27.  * Alternatively, the contents of this file may be used under the terms of
  28.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  29.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  30.  * in which case the provisions of the GPL or the LGPL are applicable instead
  31.  * of those above. If you wish to allow use of your version of this file only
  32.  * under the terms of either the GPL or the LGPL, and not to allow others to
  33.  * use your version of this file under the terms of the MPL, indicate your
  34.  * decision by deleting the provisions above and replace them with the notice
  35.  * and other provisions required by the GPL or the LGPL. If you do not delete
  36.  * the provisions above, a recipient may use your version of this file under
  37.  * the terms of any one of the MPL, the GPL or the LGPL.
  38.  *
  39.  * ***** END LICENSE BLOCK ***** */
  40.  
  41. // nsIFactory
  42. const calICSCalendarFactory = {
  43.     QueryInterface: function (aIID) {
  44.         if (!aIID.equals(Components.interfaces.nsISupports) &&
  45.             !aIID.equals(Components.interfaces.nsIFactory)) {
  46.             throw Components.results.NS_ERROR_NO_INTERFACE;
  47.         }
  48.         return this;
  49.     },
  50.  
  51.     createInstance: function (outer, iid) {
  52.         if (outer != null)
  53.             throw Components.results.NS_ERROR_NO_AGGREGATION;
  54.         return (new calICSCalendar()).QueryInterface(iid);
  55.     }
  56. };
  57.  
  58. /****
  59.  **** module registration
  60.  ****/
  61.  
  62. var calICSCalendarModule = {
  63.  
  64.     mCID: Components.ID("{f8438bff-a3c9-4ed5-b23f-2663b5469abf}"),
  65.     mContractID: "@mozilla.org/calendar/calendar;1?type=ics",
  66.  
  67.     mUtilsLoaded: false,
  68.     loadUtils: function cICM_loadUtils() {
  69.         if (this.mUtilsLoaded) {
  70.             return;
  71.         }
  72.  
  73.         const jssslContractID = "@mozilla.org/moz/jssubscript-loader;1";
  74.         const jssslIID = Components.interfaces.mozIJSSubScriptLoader;
  75.  
  76.         const iosvcContractID = "@mozilla.org/network/io-service;1";
  77.         const iosvcIID = Components.interfaces.nsIIOService;
  78.  
  79.         var loader = Components.classes[jssslContractID].getService(jssslIID);
  80.         var iosvc = Components.classes[iosvcContractID].getService(iosvcIID);
  81.  
  82.         // Note that unintuitively, __LOCATION__.parent == .
  83.         // We expect to find utils in ./../js
  84.         var appdir = __LOCATION__.parent.parent;
  85.         appdir.append("js");
  86.         const scripts = ["calUtils.js", "calProviderBase.js",
  87.                          "calICSCalendar.js" ];
  88.  
  89.         for each (var scriptName in scripts) {
  90.             var f = appdir.clone();
  91.             f.append(scriptName);
  92.  
  93.             try {
  94.                 var fileurl = iosvc.newFileURI(f);
  95.                 loader.loadSubScript(fileurl.spec, null);
  96.             } catch (e) {
  97.                 Components.utils.reportError("Error while loading " + fileurl.spec);
  98.                 throw e;
  99.             }
  100.         }
  101.  
  102.         this.mUtilsLoaded = true;
  103.     },
  104.  
  105.     registerSelf: function (compMgr, fileSpec, location, type) {
  106.         compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  107.         compMgr.registerFactoryLocation(this.mCID,
  108.                                         "Calendar ICS provider",
  109.                                         this.mContractID,
  110.                                         fileSpec,
  111.                                         location,
  112.                                         type);
  113.     },
  114.  
  115.     getClassObject: function (compMgr, cid, iid) {
  116.         if (!cid.equals(this.mCID))
  117.             throw Components.results.NS_ERROR_NO_INTERFACE;
  118.  
  119.         if (!iid.equals(Components.interfaces.nsIFactory))
  120.             throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  121.  
  122.         this.loadUtils();
  123.  
  124.         return calICSCalendarFactory;
  125.     },
  126.  
  127.     canUnload: function(compMgr) {
  128.         return true;
  129.     }
  130. };
  131.  
  132. function NSGetModule(compMgr, fileSpec) {
  133.     return calICSCalendarModule;
  134. }
  135.